home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global gFastPlay, gMode, gUserAnswer, gDemoVersion
- menuMode(1)
- gMode = #game
- if gDemoVersion and not authoring() then
- setGameSchedule(0)
- else
- if gFastPlay then
- titleText = "Shift Length?"
- promptText = "Would you like to play an abbreviated version of the game or play each shift for the normal duration?"
- multiButtonDialog(["Abbreviated", "Normal"], [#MAC: [25, 250], #Win: [20, 140]], "Normal", titleText, promptText, [#MAC: 350, #Win: 200], [#MAC: 50, #Win: 35])
- if gUserAnswer = "Abbreviated" then
- setGameSchedule(1)
- else
- setGameSchedule(0)
- end if
- else
- setGameSchedule(0)
- end if
- end if
- startNewGame()
- end
-